/* 상단 히어로 이미지 */
.hero-section--culture {
    background-image: url('/01 querensys/img/culture-hero.webp');
  }
  
  .hero-section__title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
  }
  
  /* 인재상 섹션 */
  .culture-section {
    padding: 120px 20px;
  }
  
  .culture-section--identity {
    background-color: #F5F5F7;
  }
  
  .culture-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .culture-section__subtitle {
    color: #999;
    margin-bottom: 12px;
    font-size: 1.125rem;
  }
  
  .culture-section__title {
    margin-bottom: 60px;
    font-size: 2rem;
    font-weight: 700;
  }
  
  .culture-section__values {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    position: relative;
    height: 400px;
  }

/* PC용: 원 겹치게 하기 위한 margin-left */
@media (min-width: 1025px) {
    .culture-value {
      margin-left: -40px;
    }
  
    .culture-value:first-child {
      margin-left: 0;
    }
  }
  
  @media (max-width: 1024px) {
    .culture-section__values {
      display: flex !important;         /* 혹시라도 다른 display에 덮이는 경우 방지 */
      flex-direction: column !important;
      align-items: center;
      justify-content: flex-start;
      height: auto;
      margin-left: 0;
      gap: 0;
    }
  
    .culture-value {
      margin-left: 0 !important;
      margin-top: -40px;
      width: 280px;
      height: 280px;
    }
  
    .culture-value:first-child {
      margin-top: 0;
    }
  }
  
  /* 원 하나 */
  .culture-value {
    width: 330px;
    height: 330px;
    border: 1px solid var(--color-primary-600);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 40px;
    background: transparent;
    color: #333;
    transition: background-color 0.4s ease,
                color 0.4s ease,
                transform 0.3s ease;
    z-index: 1;
    position: relative;
    text-align: center;
    margin-left: -40px;
  }
  
  .culture-value:first-child {
    margin-left: 0;
  }
  
  .culture-value:hover {
    background-color: var(--color-primary-600);
    color: var(--color-white);
    transform: scale(1.08);
    z-index: 999;
  }
  
  .culture-value:hover .culture-value__title,
  .culture-value:hover .culture-value__desc {
    color: var(--color-white);
  }
  
  .culture-value__title {
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 24px;
    color: var(--color-primary-900);
    transition: color 0.4s ease;
  }
  
  .culture-value__desc {
    color: var(--color-gray-900);
    line-height: 1.6;
    font-size: 16px;
    white-space: pre-line;
    transition: color 0.4s ease;
  }

  /* 공통 이미지 스타일 */
.culture-value {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-blend-mode: overlay; /* 색 + 이미지 겹침 */
}

/* 호버 시 색 덧씌움 효과 */
.culture-value:hover {
  z-index: 999;
}

  @media (max-width: 767px) {
    .culture-section{
        padding: 80px 20px;
    }

    .culture-section__title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .culture-value{
        width: 260px;
        height: 260px;
    }
}


/*복리후생*/
.culture-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.25rem;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .culture-benefit {
    width: calc(25% - 0.9375rem); 
    text-align: center;
    padding: 40px 20px;
    border-radius: 16px;
    background-color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--color-gray-100);
    transition:
      transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.3s ease;
    transform-origin: bottom center;
    flex: none;
    min-width: 220px;
  }
  
  .culture-benefit:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(230, 240, 254, 1);
  }

  .culture-benefit__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
  }
  .culture-benefit__icon img {
    width: 100%;
    height: auto;
    display: block;
  }
  

  .culture-benefit__title {
    margin-bottom: 16px;
  }
  
  .culture-benefit__list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
  }
  .culture-benefit__list li {
    margin-bottom: 8px;
  }
  .culture-benefit__list li::before {
    content: none;
  }
  
/* 배경 아이콘용 */
.culture-value__icon {
  position: absolute;
  width: 180px;
  height: 180px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.13;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.culture-value--passion .culture-value__icon {
  background-image: url('/Icons/icon-rocket.svg');
}

.culture-value--creativity .culture-value__icon {
  background-image: url('/Icons/icon-bulb.svg');
}

.culture-value--integrity .culture-value__icon {
  background-image: url('/Icons/icon-compass.svg');
}

.culture-value:hover .culture-value__icon {
  opacity: 0.2;
  filter: brightness(0) invert(1);
}


  @media (max-width: 1024px) {
    .culture-benefit {
      width: calc(50% - 0.625rem);
    }
  }
  

  @media (max-width: 768px) {
    .culture-benefits {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.25rem; 
      padding: 0 12px; 
    }
  
    .culture-benefit {
      width: 100%; 
      max-width: 500px; 
    }
  
    .culture-benefit__title {
      font-size: 1.5rem;
    }

    .culture-value__icon {
      width: 112px;
      height: 112px;
    }
  }
  
